home *** CD-ROM | disk | FTP | other *** search
/ Compendium Deluxe 1 / LSD Compendium Deluxe 1.iso / a / programming / assembly / kcx25asc.lha / KCX / smakefile < prev   
Encoding:
Makefile  |  1993-06-21  |  1.5 KB  |  58 lines

  1.  
  2. LFLAGS = LIB LIB:amiga.lib LIB:debug.lib NODEBUG
  3.  
  4. Prefs : Prefs.Asm KCX.i KCX.BSS KCX_Lib.i
  5.     genam    Prefs.Asm
  6.     blink Prefs.o $(LFLAGS)
  7.     copy Prefs SYS:Prefs/KCommodity
  8.  
  9. KCommodity : KCommodity.Asm KCX.i KCX.BSS KCX_Lib.i
  10.     genam    KCommodity.Asm
  11.     blink KCommodity.o $(LFLAGS)
  12.     copy KCommodity SYS:WBSTARTUP
  13.  
  14. Printer : Printer.Asm KCX.i KCX.BSS KCX_Lib.i
  15.     genam    Printer.Asm
  16.     blink Printer.o $(LFLAGS)
  17.     copy Printer SYS:Utilities/KCXPrinter
  18.  
  19. KCX.Library : KCXLib.Asm KCX.i
  20.     genam KCXLib.Asm TO kcx.library
  21.     copy kcx.library LIBS:
  22.     flush
  23.     liblist
  24.  
  25. KCX : Prefs KCommodity Printer KCX.Library
  26.  
  27.  
  28. PrefsConvert: PrefsConvert.c
  29.     sc LINK STARTUP=c NOSHORTINTS NODEBUG MCCONS PrefsConvert.c
  30.  
  31.  
  32. DEMO :
  33.     makedir t:Utilities
  34.     makedir t:Prefs
  35.     makedir t:WBStartUp
  36.     makedir t:libs
  37.     makedir t:catalogs
  38.     makedir t:catalogs/deutsch
  39.     copy KCommodity t:WBStartUp
  40.     copy KCommodity.info t:WBStartUp
  41.     copy Prefs t:Prefs/KCommodity
  42.     copy Prefs.info t:Prefs/KCommodity.info
  43.     copy Printer t:Utilities/KCXPrinter
  44.     copy Printer.info t:Utilities/KCXPrinter.info
  45.     copy kcx.library t:libs
  46.     copy LOCALE:CATALOGS/DEUTSCH/kcxprefs.catalog t:catalogs/deutsch
  47.     copy LOCALE:CATALOGS/DEUTSCH/kcxlib.catalog t:catalogs/deutsch
  48.     copy LOCALE:CATALOGS/DEUTSCH/kcxdump.catalog t:catalogs/deutsch
  49.     copy LOCALE:CATALOGS/DEUTSCH/kcxmain.catalog t:catalogs/deutsch
  50.     lha -x -r a :modem/upload/KCX t:Utilities t:Prefs \
  51.         t:libs t:WBStartUp #t:catalogs
  52.     lha a :modem/upload/KCX doc/History.Txt
  53.     delete t:utilities ALL
  54.     delete t:prefs ALL
  55.     delete t:wbstartup ALL
  56.     delete t:libs ALL
  57.     delete t:catalogs ALL
  58.